|
Styles library creation
The following example illustrates how to create a library and add two sets of styles to it. var StyleSheet: TfrxStyleSheet; StyleSheet := TfrxStyleSheet.Create; { the first set } Styles := StyleSheet.Add; Styles.Name := 'Styles1'; { here one can add styles to the Styles set} { the second set } Styles := StyleSheet.Add; Styles.Name := 'Styles2'; { here one can add styles to the Styles set} |